home *** CD-ROM | disk | FTP | other *** search
/ You're the Director / You're The Director.iso / pc / pcf / dg.dir / 00346.ls < prev    next >
Encoding:
Text File  |  1995-10-08  |  587 b   |  29 lines

  1. on enterFrame
  2.   repeat with x = 3 to 8
  3.     if rollOver(x) = 1 then
  4.       puppetSprite(x, 1)
  5.       set the visible of sprite x to 1
  6.       puppetSprite(x, 0)
  7.     end if
  8.     if rollOver(x) = 0 then
  9.       puppetSprite(x, 1)
  10.       set the visible of sprite x to 0
  11.       puppetSprite(x, 0)
  12.     end if
  13.   end repeat
  14.   if rollOver(20) = 1 then
  15.     puppetSprite(20, 1)
  16.     set the visible of sprite 20 to 1
  17.     puppetSprite(20, 0)
  18.   end if
  19.   if rollOver(20) = 0 then
  20.     puppetSprite(20, 1)
  21.     set the visible of sprite 20 to 0
  22.     puppetSprite(20, 0)
  23.   end if
  24. end
  25.  
  26. on exitFrame
  27.   go("PPrv")
  28. end
  29.